home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / tbox100 / about.frm next >
Text File  |  1995-05-08  |  3KB  |  101 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "About..."
  5.    ClientHeight    =   2355
  6.    ClientLeft      =   885
  7.    ClientTop       =   2760
  8.    ClientWidth     =   2475
  9.    Height          =   2760
  10.    Left            =   825
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   2355
  13.    ScaleWidth      =   2475
  14.    Top             =   2415
  15.    Width           =   2595
  16.    Begin CommandButton Command1 
  17.       Caption         =   "Ok"
  18.       Height          =   375
  19.       Left            =   180
  20.       TabIndex        =   6
  21.       Top             =   1800
  22.       Width           =   2115
  23.    End
  24.    Begin Label Label1 
  25.       Alignment       =   2  'Center
  26.       AutoSize        =   -1  'True
  27.       BackStyle       =   0  'Transparent
  28.       Caption         =   "Randall Kern && Jim Cash"
  29.       Height          =   195
  30.       Index           =   3
  31.       Left            =   180
  32.       TabIndex        =   5
  33.       Top             =   1440
  34.       Width           =   2115
  35.    End
  36.    Begin Label Label1 
  37.       Alignment       =   2  'Center
  38.       AutoSize        =   -1  'True
  39.       BackStyle       =   0  'Transparent
  40.       Caption         =   "example by"
  41.       Height          =   195
  42.       Index           =   2
  43.       Left            =   750
  44.       TabIndex        =   4
  45.       Top             =   1200
  46.       Width           =   975
  47.    End
  48.    Begin Label Label1 
  49.       Alignment       =   2  'Center
  50.       AutoSize        =   -1  'True
  51.       BackStyle       =   0  'Transparent
  52.       Caption         =   "based on small caption"
  53.       Height          =   195
  54.       Index           =   1
  55.       Left            =   240
  56.       TabIndex        =   3
  57.       Top             =   960
  58.       Width           =   1995
  59.    End
  60.    Begin Label Label3 
  61.       Alignment       =   2  'Center
  62.       AutoSize        =   -1  'True
  63.       BackStyle       =   0  'Transparent
  64.       Caption         =   "Mini Titlebar code"
  65.       Height          =   195
  66.       Left            =   450
  67.       TabIndex        =   2
  68.       Top             =   720
  69.       Width           =   1575
  70.    End
  71.    Begin Label Label2 
  72.       Alignment       =   2  'Center
  73.       AutoSize        =   -1  'True
  74.       BackStyle       =   0  'Transparent
  75.       Caption         =   "by Tim Barham"
  76.       Height          =   195
  77.       Left            =   600
  78.       TabIndex        =   1
  79.       Top             =   360
  80.       Width           =   1275
  81.    End
  82.    Begin Label Label1 
  83.       Alignment       =   2  'Center
  84.       AutoSize        =   -1  'True
  85.       BackStyle       =   0  'Transparent
  86.       Caption         =   "Toolbox Demonstration"
  87.       Height          =   195
  88.       Index           =   0
  89.       Left            =   240
  90.       TabIndex        =   0
  91.       Top             =   120
  92.       Width           =   1995
  93.    End
  94. End
  95. Option Explicit
  96.  
  97. Sub Command1_Click ()
  98.   Unload frmAbout
  99.   End Sub
  100.  
  101.